home *** CD-ROM | disk | FTP | other *** search
/ Iron Maiden - Maiden Hell! / Iron Maiden - Maiden Hell! Promotional CD-ROM.iso / mac / promo.dxr / scripts_4_write file using fileIO xtra = .ls < prev    next >
Encoding:
Text File  |  1998-09-16  |  329 b   |  13 lines

  1. on mouseDown
  2.   global gCharlength
  3.   set whereItsGoing to getOSDirectory()
  4.   set myFile to new(xtra("fileio"))
  5.   set fileName to whereItsGoing & "run4hills.txt"
  6.   openFile(myFile, fileName, 2)
  7.   setPosition(myFile, gCharlength)
  8.   writeString(myFile, " & this is some more text")
  9.   closeFile(myFile)
  10.   set myFile to 0
  11.   beep()
  12. end
  13.